home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 60.zip
/
BS1 part 60
/
Agfa Fonts^4.adf
/
CSsymbolsInstall
< prev
next >
Wrap
Text File
|
1992-03-13
|
3KB
|
95 lines
;This "Installer" script will configure the users system to support
; the CS(Compugraphic Script) typefaces .
; Background:
; Fountain version 37.10 sets L1 as the default symbol set. To support CS typefaces
; we need to copy a new version of IF.SS that contains character maps for CS.
; The new IF.SS files will contain:
; L1 - Amiga Latin 1
; GD - Gold Disk
; D1 - Series 100
; D2 - Series 200
; D3 - Series 300
; CP - Postscript
; CS - CS Zapf Dingbats
; SP - Symbols - Postscript
; plus the TD symbol sets, minus Ventura
;
; if something goes wrong, reset diskfont variable
(onerror (run "setenv env:sys/diskfont SYMSET L1"))
(message
"The Agfa Intellifont LaserType CS Symbols typeface require a special character set."
" Please refer to the enclosed \"Agfa CS (Compugrahic Script)Installation\" document. "
" This will show you the character set for CS Symbols. "
)
;if the original IF.SS file is installed, copy new file
(set ifssSize (getsize "fonts:_bullet/if.ss"))
(if (< ifssSize 1)
(Abort " \"fonts:_bullet/if.ss\" not found."
" Please execute \"IntellifontSystemChek\""
)
)
(if (> 18000 ifssSize)
(
(run "copy fonts:_bullet/if.ss to fonts:_bullet/if.ss.org")
(copyfiles
(prompt "Copying a new symbol set maps to support"
" LaserType CS (Compugraphic Script)"
)
(help
"To use CS Symbols characters"
" in the LaserType CS (Compugrahic Script) collection, we need to add an additional"
" symbol set. This symbol sets contain the following character maps:\n"
"\n SP - Postscript Symbols \n"
"\n"
" Refer to the enclosed document for print sample of the above selection."
)
(source "df0:Intellifontfiles")
(dest "fonts:_bullet")
(pattern "if.ss")
(files)
(confirm)
)
)
)
; set system variable
(run "setenv env:sys/diskfont SYMSET SP")
(message "The installer will now execute Fountain for you.\n"
" NOTE: This installer only works with LaserType CS Symbols Font."
" You MUST only install LaserType CS Symbols typeface, then exit from Fountain,"
" and finish the Install !!! "
)
(run "sys:system/fountain")
(run "setenv env:sys/diskfont SYMSET L1")
(trap 12345 (run "setenv env:sys/diskfont SYMSET L1"))
(exit)